home *** CD-ROM | disk | FTP | other *** search
/ Cre@te Online 2000 December / Cre@teOnline CD05.iso / MacSoft / XML Instance.sea / XML Instance / Required / ccs_util.jar / regex / DList.class (.txt) < prev    next >
Encoding:
Java Class File  |  1999-12-09  |  851 b   |  38 lines

  1. package regex;
  2.  
  3. import java.util.BitSet;
  4.  
  5. class DList {
  6.    private Chars chars;
  7.    // $FF: renamed from: to java.util.BitSet
  8.    private BitSet field_0;
  9.    private DList next;
  10.  
  11.    // $FF: renamed from: to () java.util.BitSet
  12.    public BitSet method_0() {
  13.       return this.field_0;
  14.    }
  15.  
  16.    public DList() {
  17.       this((Chars)null, new BitSet(), (DList)null);
  18.    }
  19.  
  20.    public DList(Chars var1, BitSet var2, DList var3) {
  21.       this.chars = var1;
  22.       this.field_0 = var2;
  23.       this.next = var3;
  24.    }
  25.  
  26.    public void setNext(DList var1) {
  27.       this.next = var1;
  28.    }
  29.  
  30.    public DList next() {
  31.       return this.next;
  32.    }
  33.  
  34.    public Chars chars() {
  35.       return this.chars;
  36.    }
  37. }
  38.